home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / IC Application Source ƒ / 68k Internet Config ƒ / IC StrH.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-27  |  805 b   |  43 lines  |  [TEXT/SPM ]

  1. /*
  2.     IC StrH.h
  3.     
  4.     Header file for IC StrH.c
  5.     
  6. */
  7.  
  8. #pragma once
  9.  
  10. #ifndef __H_IC_StrH__
  11. #define __H_IC_StrH__
  12.  
  13. typedef short LineIndex,* IndexPtr,** IndexHandle;
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. Handle NewStrH(void);
  20. void ReinitStrh(Handle h);
  21.  
  22. LineIndex CountStrsH(Handle h);
  23. LineIndex CountStrs(short id);
  24.  
  25. StringPtr GetIndStr(short strListID,short index,StringPtr str);
  26. StringPtr GetIndStrH(Handle h,LineIndex index,StringPtr s);
  27.  
  28. void SetIndStrH(Handle h,LineIndex index,StringPtr s);
  29. void SetIndStr(short id,LineIndex index,StringPtr s);
  30.  
  31. void DelIndStrH(Handle h,LineIndex index);
  32. void DelIndStr(short id,LineIndex index);
  33.  
  34. void InsIndStrH(Handle h,LineIndex index,StringPtr s);
  35. void InsIndString(short id,LineIndex index,StringPtr s);
  36.  
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40.  
  41. #endif /* __H_IC_StrH__ */
  42.  
  43.